home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 4083 < prev    next >
Encoding:
Text File  |  1996-08-05  |  848 b   |  32 lines

  1. Newsgroups: comp.lang.c
  2. Path: in1.uu.net!world!dougb
  3. From: dougb@world.std.com (doug a blaisdell)
  4. Subject: C Function Calling Graph Generators
  5. Message-ID: <DM488x.Fw@world.std.com>
  6. Keywords: Function graphs
  7. Organization: The World Public Access UNIX, Brookline, MA
  8. X-Newsreader: TIN [version 1.2 PL2]
  9. Date: Thu, 1 Feb 1996 21:12:32 GMT
  10.  
  11. Hello out there!
  12.  
  13. Is anyone aware of a tool which will, given some C source
  14. files, generate a graph which illlustrates the calling
  15. relationships between them, eg:
  16.  
  17. main -> promptuser() -> sendprompt()
  18.      -> getdata()
  19.      -> process() -> parse()
  20.                   -> checksyntax()
  21.                   -> querydb()
  22.      -> showresult()
  23.      -> exit()
  24.  
  25. I know that fancy packages like ObjectCenter have such
  26. tools, and I wonder if there was something in the
  27. public domain, as well.
  28.  
  29.             Cheers,
  30.             Doug Blaisdell
  31.  
  32.